Exploring Proximity

Here in this page, I explore the idea of proximity of Divvy stations and CTA stops. For this project, a Divvy station is operationally defined as being in proximity with a CTA stop if the distance between the two is equal to or less than 50 meters. In the data frames I have prepared as part of this project, the following two variables are relevant to this notion of proximity:

  • from_prox or to_prox: this binary (0 or 1) variable marks whether the trip is made from or to a station in proximity (less than 50 meters) with any CTA stop.

  • from_prox_num or to_prox_num: this integer variable marks how many CTA stops are in proximity with the station this trip is made from or to.


Divvy Stations and CTA Stops

As of November 13, 2016, there are total 525 Divvy Stations and 11,510 CTA stops in the greater Chicago area. It is, then, not difficult to expect that not all CTA stops are around Divvy Stations, and therefore being available for multi-modal trips between these two modes of transportation. The following map illustrates the locations of both Divvy stations (blue) and CTA stops (red). As expected, CTA covers a much larger area than Divvy; accordingly, many CTA stops are far from any Divvy stations.

How about the other way aroud? How many Divvy stations are in proximity with CTA stops, thereby making multi-modal trips likely? Here, I chose 50 meters, or approximately 165 feet, which is about a quarter of a standard block (200 m), as my proximity standard; This takes about 36 seconds to travel by the average human walking speed. If a Divvy station has one CTA stop or more within 50 m distance, its proximity value is 1. Otherwise, the proximity value is 0. The following map illustrates the Divvy stations that are in proximity with CTA stops (Proximity == 1) and the others (Proximity = 0). There are total 295 Divvy stations in proximity with CTA stops and 240 stations that are not.

Number of Divvy Stations, by Proximity (<=50m)
Proximity n
0 240
1 295

Not all Divvy stations with proximity == 1 are the same. Some stations are in proximity with only one CTA stop, and others are so with multiple CTA stops. On average, a Divvy station is in proximity with 2.18 CTA stops.

Divvy Stations, by the Number of CTA Stops in Proximity
Numer of CTA Stops n
1 89
2 132
3 30
4 28
5 9
6 5
7 2

Divvy Trips, from and to

How many trips were made in the first two quarters to and from each Divvy stations? The following two maps show from and to which station all 1,469,740 Divvy trips.

Now, what I am actually interested in are trips made from and to only those stations in proximity with CTA stops. Among all, total 814,200 trips were made from such stations and 818,542 trips were made to such stations. Compared with the previous maps, the pattern remains the same: more trips are made in the northern part of the town.

## [1] "The 55.3975533087485% of all Divvy trips are made from stations in proximity with one CTA stop or more."

## [1] "The 55.6929797106971% of all Divvy trips are made to stations in proximity with one CTA stop or more."